From a307abc9d63e4c8677a69b13696cc513d148af2b Mon Sep 17 00:00:00 2001 From: Dirk Brenken Date: Sat, 17 Apr 2021 19:15:57 +0300 Subject: [PATCH] luci-mod-network: fix xhtml markup * fix markup in interfaces.js (#4980) Signed-off-by: Dirk Brenken (Adapted from commit 2617fcdc631d0b504abdb27bb17d44f26c230cda by taking only the .js part.) Signed-off-by: Hannu Nyman --- .../htdocs/luci-static/resources/view/network/interfaces.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js index a10e8552ce..f1e62c13db 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js @@ -672,7 +672,7 @@ return view.extend({ so.depends('ra', 'relay'); so = ss.taboption('ipv6', form.Value, 'ra_hoplimit', _('RA Hop Limit'), _('The maximum hops \ - to be published in RA messages.
Default is 0 (0), meaning unspecified.\ + to be published in RA messages.
Default is 0 (0), meaning unspecified.\ Max 255.')); so.optional = true; so.default = '0'; @@ -685,7 +685,7 @@ return view.extend({
  • stateless: Router advertises prefixes, host uses SLAAC \ to self assign its own address. No DHCPv6.
  • \
  • stateless + stateful: SLAAC. In addition, router assigns an IPv6 address to a host via DHCPv6.
  • \ -
  • stateful-only: No SLAAC. Router assigns an IPv6 address to a host via DHCPv6.
    • ')); +
    • stateful-only: No SLAAC. Router assigns an IPv6 address to a host via DHCPv6.
    ')); so.value('0', _('stateless')); so.value('1', _('stateless + stateful')); so.value('2', _('stateful-only')); -- 2.30.2